home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 July: Mac OS SDK / Dev.CD Jul 99 SDK1.toast / Development Kits / Mac OS / QuickDraw3D 1.6 SDK / Mac SampleCode New for 1.6 / RollerCoasterSampleMac / Interfaces / Win32Application.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-05-18  |  1.0 KB  |  44 lines  |  [TEXT/CWIE]

  1. /*
  2.     File:        Win32Application.h
  3.     
  4.     Contains:    Interface file for Win32Application.c
  5.     
  6.     Written by:    Scott Kuechle, based on original Gerbils code by Brian Greenstone
  7.  
  8.     Copyright:    © 1998 by Apple Computer, Inc. All rights reserved
  9.     
  10.     Change History (most recent first)
  11.     
  12.         <1>        9/1/98        srk        first file
  13.  
  14.  
  15. */
  16.  
  17. #pragma once
  18.  
  19. /************************************************************
  20. *                                                           *
  21. *    INCLUDE FILES                                          *
  22. *                                                           *
  23. *************************************************************/
  24.  
  25. #if defined(_MSC_VER)
  26. #include "WinPrefix.h"
  27. #else
  28. #include <ConditionalMacros.h>
  29. #endif
  30.  
  31. /* Windows headers */
  32. #define    STRICT
  33. #include <windows.h>        // required for all Windows applications
  34. #include "resource.h"        // Windows resource IDs
  35.  
  36. #include <stdio.h>
  37.  
  38. #include "Document.h"
  39. #include "QD3DSupport.h"
  40.  
  41. #include "QD3DIO.h"
  42. #include "QD3DErrors.h"
  43. #include "QD3DStorage.h"
  44.